From 7e68de5600ed124058e376aa66c4d6690b2cdcc9 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 11 Jun 1993 21:33:27 +0000 Subject: [PATCH] (setenv): Treat case as significant. --- lisp/env.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/env.el b/lisp/env.el index 256a3338e60..cc68de9cf00 100644 --- a/lisp/env.el +++ b/lisp/env.el @@ -40,6 +40,7 @@ This function works by modifying `process-environment'." (if (string-match "=" variable) (error "Environment variable name `%s' contains `='" variable) (let ((pattern (concat "\\`" (regexp-quote (concat variable "=")))) + (case-fold-search nil) (scan process-environment)) (while scan (cond -- 2.30.2